home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000132_news@columbia.edu _Fri Dec 15 11:12:06 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  7KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA24970
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 15 Dec 2000 11:12:06 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA27290
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 15 Dec 2000 11:12:05 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA19163
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 15 Dec 2000 10:48:50 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: running kermit on BOTH ends; ^c confusion
  14. Date: 15 Dec 2000 15:48:46 GMT
  15. Organization: Columbia University
  16. Message-ID: <91degu$imn$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <91ck0k$hqg$1@panix5.panix.com>,
  20. David Combs <dkcombs@panix.com> wrote:
  21.  
  22. : I am on panix.com, and run kermit on both ends, ie here at home
  23. : on my sparcstation 5 (solaris 7) and there, on EITHER their pc's
  24. : running netbsd, OR their sparc-something, sunos 4.x.
  25. What versions of Kermit are they?  The current version of
  26. C-Kermit is 7.0:
  27.  
  28.   http://www.columbia.edu/kermit/
  29.  
  30. : Several problems:
  31. : 1: my us robotics 56k cheapo modem, they (panix) say(s), should
  32. : have some DIFFERENT special-for-panix init string.
  33. I wonder why it has to be special.  This might be the key to your
  34. file-transfer troubles.  I assume this is an external modem?  The
  35. Courier V.Everything?  This actually is a very solid modem.  See:
  36.  
  37.   http://www.columbia.edu/kermit/winmodem.html
  38.  
  39. (the external modem used in the tests described there was a USR
  40. Courier V.Everything 56K).
  41.  
  42. : a.  do YOU know the proper init string for panix?
  43. No.
  44.  
  45. : b.  how do I get the local kermit to do it automatically
  46. :      (setup the modem a la panix) WHEN (and ONLY when)
  47. :      I want to dial into panix?
  48. :     (Yes, I could read this 620-page book you've written,
  49. :         excellent, etc, but man, I'm just under information
  50. :         overload, not as young as I once was (58 now), and
  51. :         am not as easily able to fend off the devil in all
  52. :         those details.... )
  53. What can I say?  The answer to your question (b, not a) is in
  54. Chapter 4, Configuring Modems.  It's not a one-liner, or else
  55. we wouldn't have had to write that whole chapter.
  56.  
  57. If you send us mail at kermit-support@columbia.edu and tell us
  58. what Panix says the init string should be, we can tell you
  59. what to do.
  60.  
  61. : c.  Having GREAT difficulty downloading .gz-files (of course
  62. :      I set -i!), although can usually do it ok if UN-compressed.
  63. This might be our fault.  The Solaris version of C-Kermit, in
  64. the last couple releases, has suffered from nonfunctional hardware
  65. flow control.  This is because Sun changed that API for
  66. controlling this; Kermit continued to use the "old" way, which
  67. is accepted but no longer works.  Solution: download C-Kermit 7.1
  68. Alpha.01, which uses the new way.  You can find the Solaris 7 Sparc
  69. binary here:
  70.  
  71.   ftp://kermit.columbia.edu/kermit/test/bin/cku199a01.solaris7-sparc
  72.  
  73. Then:
  74.  
  75.   mv cku199a01.solaris7-sparc wermit
  76.  
  77. and then give the "wermit" program the same owner, group, and
  78. permissions that your current Kermit program has, so it can dial out.
  79. Then try the new copy instead of the old copy and see if it fixes
  80. the problem.
  81.  
  82. If not, first make sure you are setting up the call correctly:
  83.  
  84.   set modem type usr ; This must come first
  85.   set line /dev/cu/a ; or whatever
  86.   set speed 57600
  87.   dial 7654321       ; substitute real phone number
  88.  
  89. If you give these commands in this sequence, RTS/CTS flow control
  90. and all the other appropriate defaults are used automatically.
  91.  
  92. If you still have trouble after that...
  93.  
  94. I don't know what version of Kermit they have on Panix, but let's
  95. assume, optimistically, that it's 6.0 or later.  Start Kermit on
  96. Panix by typing "kermit" to get the prompt.  Then type "robust".
  97. Then type "send foo.tar.gz" (for some gz file).  See if it works.
  98. It probably will, but it will be very slow.
  99.  
  100. Then type "cautious", and download the same file again.  If it
  101. works, it will be faster.
  102.  
  103. Then type "fast" and try again.  My guess is "cautious" will work
  104. but "fast" will fail.  In that case, use "cautious".  If you think
  105. "cautious" is too slow then you'll have to read the chapters on 
  106. file-transfer troubleshooting (10) and performance (12) in the
  107. book to find out how to fine-tune the connection for optimum
  108. performance.
  109.  
  110. : d.   The Z etc cmds that kermit polls for -- to stop downloading
  111. :      the file (via "x"?), or the one for the entire group --
  112. :      doesn't seem to work -- kermit (the remote one) does
  113. :      see the char, but after telling me, just goes on back
  114. :      to being hung.
  115. What is on the screen when you type the X or Z?  These
  116. interruption characters work when the file-transfer display is
  117. active, not before or after.
  118.  
  119. :      UNFORTUNATELY, a ^c gets me back to the kermit prompt
  120. :      on my LOCAL kermit!!!
  121. That's what it's supposed to do.
  122.  
  123. :      How in the world do you direct commands to ONLY the
  124. :      REMOTE kermit?  The last thing I want (man, are those
  125. :      5 words ambiguous!) is to be disconnected from the
  126. :      remote machine!
  127. You local C-Kermit program is in one of three states:
  128.  
  129.  1. Command mode (waiting for you to type a command at the
  130.     C-Kermit> prompt),
  131.  
  132.  2. CONNECT mode -- sending your keystrokes to the other
  133.     computer and displaying the other computer's output on
  134.     your screen.  In this case you must use C-Kermit's
  135.     escape sequence, Ctrl-\ followed by an action letter,
  136.     such as 'c', to get the local C-Kermit's attention.
  137.  
  138.  3. Transferring a file.  In this case it monitors the keyboard
  139.     for X, Z, Ctrl-C, etc.
  140.  
  141. : e.   I am sure that all the above are really stupid and
  142. :      totally obvious to anyone who really understands
  143. :      kermit.  But I work alone, access to info only via
  144. :      usenet, email, and www (and VERY occasional conference),
  145. :      so I rely on you.
  146. And the manual I hope.  It's all in there.  There's a good
  147. table of contents that should send you straight to the right
  148. section, and there's a big index for looking things up.
  149.  
  150. - Frank